home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / djip / form1.frm < prev    next >
Text File  |  1999-09-07  |  2KB  |  89 lines

  1. VERSION 5.00
  2. Begin VB.Form Form1 
  3.    Caption         =   "DJIP sample"
  4.    ClientHeight    =   2190
  5.    ClientLeft      =   60
  6.    ClientTop       =   345
  7.    ClientWidth     =   2250
  8.    LinkTopic       =   "Form1"
  9.    ScaleHeight     =   2190
  10.    ScaleWidth      =   2250
  11.    StartUpPosition =   3  'Windows Default
  12.    Begin prjDJIP.DJIp DJIp1 
  13.       Height          =   270
  14.       Left            =   195
  15.       TabIndex        =   6
  16.       Top             =   180
  17.       Width           =   1875
  18.       _ExtentX        =   3307
  19.       _ExtentY        =   476
  20.       ForeColor       =   -2147483630
  21.    End
  22.    Begin VB.CommandButton cmdGet 
  23.       Caption         =   "Get"
  24.       Height          =   495
  25.       Left            =   1050
  26.       TabIndex        =   5
  27.       Top             =   1470
  28.       Width           =   870
  29.    End
  30.    Begin VB.TextBox txtVal 
  31.       Height          =   300
  32.       Left            =   165
  33.       TabIndex        =   2
  34.       Text            =   "250"
  35.       Top             =   1485
  36.       Width           =   450
  37.    End
  38.    Begin VB.TextBox txtOctet 
  39.       Height          =   315
  40.       Left            =   165
  41.       TabIndex        =   1
  42.       Text            =   "1"
  43.       Top             =   840
  44.       Width           =   450
  45.    End
  46.    Begin VB.CommandButton cmdAdd 
  47.       Caption         =   "Add"
  48.       Height          =   495
  49.       Left            =   1050
  50.       TabIndex        =   0
  51.       Top             =   675
  52.       Width           =   870
  53.    End
  54.    Begin VB.Label Label2 
  55.       AutoSize        =   -1  'True
  56.       Caption         =   "Value:"
  57.       Height          =   195
  58.       Left            =   165
  59.       TabIndex        =   4
  60.       Top             =   1290
  61.       Width           =   450
  62.    End
  63.    Begin VB.Label Label1 
  64.       AutoSize        =   -1  'True
  65.       Caption         =   "Octet:"
  66.       Height          =   195
  67.       Left            =   165
  68.       TabIndex        =   3
  69.       Top             =   600
  70.       Width           =   450
  71.    End
  72. End
  73. Attribute VB_Name = "Form1"
  74. Attribute VB_GlobalNameSpace = False
  75. Attribute VB_Creatable = False
  76. Attribute VB_PredeclaredId = True
  77. Attribute VB_Exposed = False
  78. Private Sub cmdAdd_Click()
  79.   Call DJIp1.PutOctet(txtOctet, txtVal)
  80. End Sub
  81.  
  82. Private Sub cmdGet_Click()
  83.   MsgBox DJIp1.GetIp
  84. End Sub
  85.  
  86. Private Sub Form_Load()
  87.   DJIp1.Appearance = cc3D
  88. End Sub
  89.